home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000008_news@columbia.edu _Sat Jan 15 17:25:32 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA07926
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 15 Jan 2000 17:25:32 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA25738
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 15 Jan 2000 17:23:48 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit 7 very slow - what can be done?
  11. Date: 15 Jan 2000 22:23:48 GMT
  12. Organization: Columbia University
  13. Message-ID: <85qs1k$p47$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <Ta6g4.319$M4.31002@den-news1.rmi.net>,
  17. Arthur Wouk <awouk@syzygy.nilenet.com> wrote:
  18. : they have just installed c-kermit 7.0 on nilenet, and i am seeing a
  19. : marked drop in performance from the previous release. i cannot get ANY
  20. : file transfer (nothing is downloaded)  unless i use either the
  21. : cautious or the robust option.
  22. :
  23. That's a fairly sure indicator of a transparency problem; version 7 
  24. sends many control characters "bare" now instead of prefixing.  The
  25. set of bare controls is safe in most environments but obviously not all.
  26. To back off on control-character unprefixing, tell C-Kermit 7.0 to
  27. "set prefixing all" or "set prefixing cautious".  Or fine-tune with
  28. "set control [un]prefix <list-of-specific-characters>".
  29.  
  30. : ... with cautious i get no more than a
  31. : transfer rate of 2869cps  (binary - 33.5k baud modem). i used to get
  32. : over 3000cps on the same line with the same modem. with robust the
  33. : performance drops to about 1870 cps.
  34. CAUTIOUS and ROBUST are "macros" that adjust not only prefixing but also
  35. packet length and window size.  I think you only need to worry about the
  36. prefixing.
  37.  
  38. : this is from a sun SPARC station 20 running Solaris 2.6 to a
  39. : SPARC station2 running Solaris 2.4, in case that has any bearing on the
  40. : matter. the SPARC2 is running c-kermit6.0.192.
  41. :
  42. None of this should matter -- what really matters is: what box or "thing"
  43. along the communication path is sensitive to what control characters?
  44.  
  45. - Frank